update eslint rules

This commit is contained in:
pypy
2020-03-29 11:51:11 +09:00
parent 774ed4baaf
commit 6aebee7fc0

View File

@@ -1,38 +1,36 @@
module.exports = { module.exports = {
'env': { root: true,
'browser': true, env: {
'es6': true, browser: true,
'jquery': true node: true,
es2020: true
}, },
'extends': 'eslint:all', globals: {
'globals': { CefSharp: 'readonly',
'CefSharp': 'readonly', VRCX: 'readonly',
'VRCX': 'readonly', VRCXStorage: 'readonly',
'VRCXStorage': 'readonly', SQLite: 'readonly',
'SQLite': 'readonly', LogWatcher: 'readonly',
'LogWatcher': 'readonly', Discord: 'readonly',
'Discord': 'readonly', Noty: 'readonly',
'Noty': 'readonly', Vue: 'readonly',
'Vue': 'readonly', VueLazyload: 'readonly',
'VueLazyload': 'readonly', DataTables: 'readonly',
'DataTables': 'readonly', ELEMENT: 'readonly'
'ELEMENT': 'readonly'
}, },
'parserOptions': { extends: 'eslint:all',
'ecmaVersion': 9 rules: {
}, 'array-bracket-newline': 0,
'root': true,
'rules': {
'array-element-newline': 0, 'array-element-newline': 0,
'block-scoped-var': 0, 'block-scoped-var': 0,
'camelcase': 0, camelcase: 0,
'capitalized-comments': 0, 'capitalized-comments': 0,
'complexity': 0, complexity: 0,
'func-names': 0, 'func-names': 0,
'function-call-argument-newline': 0, 'function-call-argument-newline': 0,
'guard-for-in': 0, 'guard-for-in': 0,
'id-length': 0, 'id-length': 0,
'indent': 0, indent: 0,
'linebreak-style': 0, 'linebreak-style': 0,
'lines-around-comment': 0, 'lines-around-comment': 0,
'max-depth': 0, 'max-depth': 0,
@@ -46,7 +44,7 @@ module.exports = {
'no-bitwise': 0, 'no-bitwise': 0,
'no-console': 0, 'no-console': 0,
'no-continue': 0, 'no-continue': 0,
'no-empty': ['error', { 'allowEmptyCatch': true }], 'no-empty': ['error', { allowEmptyCatch: true }],
'no-magic-numbers': 0, 'no-magic-numbers': 0,
'no-mixed-operators': 0, 'no-mixed-operators': 0,
'no-param-reassign': 0, 'no-param-reassign': 0,
@@ -59,17 +57,19 @@ module.exports = {
'no-var': 0, 'no-var': 0,
'no-warning-comments': 0, 'no-warning-comments': 0,
'object-curly-spacing': ['error', 'always'], 'object-curly-spacing': ['error', 'always'],
'object-property-newline': 0,
'one-var': 0, 'one-var': 0,
'padded-blocks': 0, 'padded-blocks': 0,
'prefer-arrow-callback': 0, 'prefer-arrow-callback': 0,
'prefer-destructuring': 0, 'prefer-destructuring': 0,
'prefer-named-capture-group': 0, 'prefer-named-capture-group': 0,
'quotes': ['error', 'single', { 'avoidEscape': true }], quotes: ['error', 'single', { avoidEscape: true }],
'quote-props': 0, 'quote-props': 0,
'require-unicode-regexp': 0,
'sort-keys': 0, 'sort-keys': 0,
'sort-vars': 0, 'sort-vars': 0,
'space-before-function-paren': ['error', { 'named': 'never' }], 'space-before-function-paren': ['error', { named: 'never' }],
'strict': 0, strict: 0,
'vars-on-top': 0 'vars-on-top': 0
} }
}; };