Update .eslintrc.js
This commit is contained in:
parent
7f5299cf46
commit
01afdc410e
|
@ -31,6 +31,10 @@ module.exports = {
|
||||||
'before': true,
|
'before': true,
|
||||||
'after': true,
|
'after': true,
|
||||||
}],
|
}],
|
||||||
|
'key-spacing': ['error', {
|
||||||
|
'beforeColon': false,
|
||||||
|
'afterColon': true,
|
||||||
|
}],
|
||||||
/* TODO: path aliasを使わないとwarnする
|
/* TODO: path aliasを使わないとwarnする
|
||||||
'no-restricted-imports': ['warn', {
|
'no-restricted-imports': ['warn', {
|
||||||
'patterns': [
|
'patterns': [
|
||||||
|
@ -47,10 +51,15 @@ module.exports = {
|
||||||
'no-async-promise-executor': ['off'],
|
'no-async-promise-executor': ['off'],
|
||||||
'no-useless-escape': ['off'],
|
'no-useless-escape': ['off'],
|
||||||
'no-multi-spaces': ['warn'],
|
'no-multi-spaces': ['warn'],
|
||||||
|
'no-multiple-empty-lines': ['error', { 'max': 1 }],
|
||||||
'no-control-regex': ['warn'],
|
'no-control-regex': ['warn'],
|
||||||
'no-empty': ['warn'],
|
'no-empty': ['warn'],
|
||||||
'no-inner-declarations': ['off'],
|
'no-inner-declarations': ['off'],
|
||||||
'no-sparse-arrays': ['off'],
|
'no-sparse-arrays': ['off'],
|
||||||
|
'nonblock-statement-body-position': ['error', 'beside'],
|
||||||
|
'object-curly-spacing': ['error', 'always'],
|
||||||
|
'space-infix-ops': ['error'],
|
||||||
|
'space-before-blocks': ['error', 'always'],
|
||||||
'@typescript-eslint/no-var-requires': ['warn'],
|
'@typescript-eslint/no-var-requires': ['warn'],
|
||||||
'@typescript-eslint/no-inferrable-types': ['warn'],
|
'@typescript-eslint/no-inferrable-types': ['warn'],
|
||||||
'@typescript-eslint/no-empty-function': ['off'],
|
'@typescript-eslint/no-empty-function': ['off'],
|
||||||
|
|
Loading…
Reference in New Issue