Skip to content
Snippets Groups Projects
Commit bd53c28a authored by syuilo's avatar syuilo
Browse files

fix eslint rule

parent c2603431
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ module.exports = {
// data の禁止理由: 抽象的すぎるため
// e の禁止理由: error や event など、複数のキーワードの頭文字であり分かりにくいため
"id-denylist": ["error", "window", "data", "e"],
'eqeqeq': ['error', { 'null': 'ignore' }],
'eqeqeq': ['error', 'always', { 'null': 'ignore' }],
"vue/attributes-order": ["error", {
"alphabetical": false
}],
......
......@@ -37,7 +37,7 @@ module.exports = {
]
}],
*/
'eqeqeq': ['error', { 'null': 'ignore' }],
'eqeqeq': ['error', 'always', { 'null': 'ignore' }],
'no-multi-spaces': ['error'],
'no-var': ['error'],
'prefer-arrow-callback': ['error'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment