lint: configure all eslint, prettier and editorconfig to use 4 tabs
This commit is contained in:
parent
8a8995cf2d
commit
e6313080b9
|
@ -0,0 +1 @@
|
|||
indent_size = 4
|
|
@ -8,7 +8,6 @@ module.exports = {
|
|||
plugins: ['@typescript-eslint/eslint-plugin'],
|
||||
extends: [
|
||||
'plugin:@typescript-eslint/recommended',
|
||||
'plugin:prettier/recommended',
|
||||
],
|
||||
root: true,
|
||||
env: {
|
||||
|
@ -21,7 +20,8 @@ module.exports = {
|
|||
'@typescript-eslint/explicit-function-return-type': 'off',
|
||||
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'error',
|
||||
'no-unused-vars': 'error',
|
||||
'indent': ['error', 4 ]
|
||||
'@typescript-eslint/no-unused-vars': [ 'error', { args: 'none' } ],
|
||||
'no-unused-vars': [ 'error', { args: 'none' } ],
|
||||
'indent': 'off'
|
||||
},
|
||||
};
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"singleQuote": true,
|
||||
"trailingComma": "all"
|
||||
"trailingComma": "es5",
|
||||
"tabWidth": 4,
|
||||
"semi": false,
|
||||
"singleQuote": true
|
||||
}
|
Loading…
Reference in New Issue