mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 12:23:09 +02:00
40 lines
519 B
JavaScript
40 lines
519 B
JavaScript
module.exports = {
|
|
'env': {
|
|
'commonjs': true,
|
|
'es6': true,
|
|
'browser': false,
|
|
'node': true
|
|
},
|
|
'extends': 'eslint:recommended',
|
|
'globals': {
|
|
'Atomics': 'readonly',
|
|
'SharedArrayBuffer': 'readonly'
|
|
},
|
|
'parserOptions': {
|
|
'ecmaVersion': 2021
|
|
},
|
|
'rules': {
|
|
'indent': [
|
|
'warn',
|
|
'tab'
|
|
],
|
|
'linebreak-style': [
|
|
'off',
|
|
'windows'
|
|
],
|
|
'quotes': [
|
|
'warn',
|
|
'single'
|
|
],
|
|
'semi': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'no-control-regex': [
|
|
'off'
|
|
],
|
|
'no-console': [
|
|
'off'
|
|
]
|
|
}
|
|
}; |