You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
snabbdom/.eslintrc.js

56 lines
1.7 KiB
JavaScript

module.exports = {
extends: 'standard-with-typescript',
parserOptions: { project: [ './tsconfig.json', ] },
rules: {
'@typescript-eslint/brace-style': 'off',
'@typescript-eslint/consistent-type-assertions': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/indent': 'off',
'@typescript-eslint/member-delimiter-style': 'off',
'@typescript-eslint/no-unnecessary-type-assertion': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/quotes': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
'array-bracket-spacing': 'off',
'block-spacing': 'off',
'brace-style': 'off',
'comma-dangle': 'off',
'comma-spacing': 'off',
'dot-notation': 'off',
'eol-last': 'off',
'import/first': 'off',
'key-spacing': 'off',
'keyword-spacing': 'off',
'no-mixed-operators': 'off',
'no-multi-spaces': 'off',
'no-sequences': 'off',
'no-tabs': 'off',
'no-trailing-spaces': 'off',
'no-undef': 'off',
'no-unneeded-ternary': 'off',
'no-unused-expressions': 'off',
'no-unused-vars': 'off',
'no-void': 'off',
'node/no-deprecated-api': 'off',
'object-curly-newline': 'off',
'object-curly-spacing': 'off',
'object-property-newline': 'off',
'one-var': 'off',
'padded-blocks': 'off',
'prefer-const': 'off',
'quote-props': 'off',
'semi-spacing': 'off',
'space-before-blocks': 'off',
'space-before-function-paren': 'off',
'space-infix-ops': 'off',
'spaced-comment': 'off',
curly: 'off',
eqeqeq: 'off',
indent: 'off',
quotes: 'off',
semi: 'off'
}
}