introduce eslint

This commit is contained in:
syuilo
2021-07-30 01:18:19 +09:00
parent 0616534af7
commit 677ed40b40
7 changed files with 1620 additions and 15 deletions

32
.eslintrc.js Normal file
View File

@@ -0,0 +1,32 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'indent': ['error', 'tab', {
'SwitchCase': 1,
'flatTernaryExpressions': true,
}],
'eol-last': ['error', 'always'],
'semi': ['error', 'always'],
'quotes': ['error', 'single'],
'keyword-spacing': ['error', {
'before': true,
'after': true,
}],
'no-multi-spaces': ['error'],
'no-var': ['error'],
'prefer-arrow-callback': ['error'],
'no-throw-literal': ['error'],
'no-param-reassign': ['warn'],
'no-constant-condition': ['warn'],
'no-empty-pattern': ['warn'],
'@typescript-eslint/no-inferrable-types': ['off'],
},
};