github-pages-deploy-action/node_modules/eslint-plugin-github/lib/configs/recommended.js
2020-03-06 22:45:40 -05:00

78 lines
2.5 KiB
JavaScript

module.exports = {
plugins: ['github', 'prettier', 'eslint-comments'],
env: {
commonjs: true
},
rules: {
camelcase: ['error', {properties: 'always'}],
'constructor-super': 'error',
eqeqeq: ['error', 'smart'],
'eslint-comments/no-unused-enable': 'error',
'eslint-comments/no-unused-disable': 'error',
'eslint-comments/disable-enable-pair': 'off',
'eslint-comments/no-aggregating-enable': 'off',
'eslint-comments/no-duplicate-disable': 'error',
'eslint-comments/no-unlimited-disable': 'error',
'eslint-comments/no-use': [
'error',
{
allow: ['eslint', 'eslint-disable-next-line', 'eslint-env', 'globals']
}
],
'func-style': ['error', 'declaration', {allowArrowFunctions: true}],
'github/no-implicit-buggy-globals': 'error',
'no-case-declarations': 'error',
'no-class-assign': 'error',
'no-compare-neg-zero': 'error',
'no-cond-assign': 'error',
'no-console': 'error',
'no-const-assign': 'error',
'no-constant-condition': 'error',
'no-control-regex': 'error',
'no-debugger': 'error',
'no-delete-var': 'error',
'no-dupe-args': 'error',
'no-dupe-class-members': 'error',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-empty-character-class': 'error',
'no-empty-pattern': 'error',
'no-empty': 'error',
'no-ex-assign': 'error',
'no-extra-boolean-cast': 'error',
'no-fallthrough': 'error',
'no-func-assign': 'error',
'no-global-assign': 'error',
'no-implicit-globals': 'error',
'no-inner-declarations': 'error',
'no-invalid-regexp': 'error',
'no-invalid-this': 'error',
'no-irregular-whitespace': 'error',
'no-new-symbol': 'error',
'no-obj-calls': 'error',
'no-octal': 'error',
'no-redeclare': 'error',
'no-regex-spaces': 'error',
'no-return-assign': 'error',
'no-self-assign': 'error',
'no-shadow': 'error',
'no-sparse-arrays': 'error',
'no-this-before-super': 'error',
'no-throw-literal': 'error',
'no-undef': 'error',
'no-unreachable': 'error',
'no-unsafe-finally': 'error',
'no-unsafe-negation': 'error',
'no-unused-labels': 'error',
'no-unused-vars': 'error',
'no-useless-concat': 'error',
'no-useless-escape': 'error',
'object-shorthand': ['error', 'always', {avoidQuotes: true}],
'prefer-promise-reject-errors': 'error',
'prettier/prettier': 'error',
'require-yield': 'error',
'use-isnan': 'error',
'valid-typeof': 'error'
}
}