Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: ignore template string linting for now #15748

Merged
merged 1 commit into from Apr 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion npm/eslint-plugin-dev/lib/index.js
Expand Up @@ -50,6 +50,8 @@ const baseRules = {
'error',
2,
{
// TODO: fix this, we shouldn't need to ignore TemplateLiterals
'ignoredNodes': ['TemplateLiteral'],
'SwitchCase': 1,
'MemberExpression': 0,
},
Expand Down Expand Up @@ -193,7 +195,8 @@ const baseRules = {
],
'space-infix-ops': 'error',
'space-unary-ops': 'error',
'template-curly-spacing': 'error',
// TODO: change this back to 'error'
'template-curly-spacing': 'off',
'use-isnan': 'error',
'valid-typeof': 'error',
}
Expand Down