@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
86 lines (85 loc) • 3.32 kB
JavaScript
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: { sourceType: 'module' },
plugins: ['@typescript-eslint', '@spinnaker/eslint-plugin', 'react-hooks'],
extends: ['eslint:recommended', 'prettier', 'prettier/@typescript-eslint', 'plugin:@typescript-eslint/recommended'],
rules: {
'@spinnaker/import-sort': 1,
'@spinnaker/api-deprecation': 2,
'@spinnaker/api-no-slashes': 2,
'@spinnaker/api-no-unused-chaining': 2,
'@spinnaker/import-from-alias-not-npm': 2,
'@spinnaker/import-from-npm-not-alias': 2,
'@spinnaker/import-from-npm-not-relative': 2,
'@spinnaker/import-from-presentation-not-core': 2,
'@spinnaker/import-relative-within-subpackage': 2,
'@spinnaker/migrate-to-mock-http-client': 2,
'@spinnaker/ng-no-component-class': 2,
'@spinnaker/ng-no-module-export': 2,
'@spinnaker/ng-no-require-angularjs': 2,
'@spinnaker/ng-no-require-module-deps': 2,
'@spinnaker/ng-strictdi': 2,
'@spinnaker/prefer-promise-like': 1,
'@spinnaker/react2angular-with-error-boundary': 2,
'@spinnaker/rest-prefer-static-strings-in-initializer': 2,
indent: 'off',
'member-ordering': 'off',
'no-console': ['error', { allow: ['warn', 'error'] }],
'no-extra-boolean-cast': 'off',
'no-prototype-builtins': 'off',
'one-var': ['error', { initialized: 'never' }],
'prefer-rest-params': 'off',
'prefer-spread': 'off',
// turn back on if https://github.com/eslint/eslint/issues/11899 fixes false positives
'require-atomic-updates': 'off',
'react-hooks/rules-of-hooks': 'error',
// turn back on after addressing all violations
// 'react-hooks/exhaustive-deps': 'warn',
'@typescript-eslint/array-type': ['error', { default: 'array-simple' }],
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/indent': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/no-case-declarations': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-triple-slash-reference': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-var-requires': 'off', // TODO: turn on once all code is using ES6 imports
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
},
overrides: [
{
files: ['*.js', '*.jsx'],
rules: {
'@typescript-eslint/no-use-before-define': 'off',
},
},
{
files: ['*.ts', '*.tsx'],
rules: {
'no-undef': 'off', // typescript already checks this
},
},
],
env: {
browser: true,
node: true,
es6: true,
jasmine: true,
},
globals: {
angular: true,
$: true,
_: true,
},
};