Use @typescript-eslint/semi rule
This commit is contained in:
parent
39d65b136a
commit
fc1cd234d5
36 changed files with 7 additions and 63 deletions
|
@ -72,6 +72,7 @@
|
|||
"quotes": ["error", "single", { "allowTemplateLiterals": true }],
|
||||
"require-jsdoc": "off",
|
||||
"require-unicode-regexp": "off",
|
||||
"semi": "off",
|
||||
"sort-imports": "off",
|
||||
"sort-keys": "off",
|
||||
"sort-vars": "off",
|
||||
|
@ -80,6 +81,8 @@
|
|||
"react/jsx-indent": ["error", 2],
|
||||
"react/prop-types": "off",
|
||||
"react/react-in-jsx-scope": "off",
|
||||
|
||||
"@typescript-eslint/no-unused-vars": ["error", { args: "none" }],
|
||||
"@typescript-eslint/semi": ["error"]
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue