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

fix: [M3-8947] - Remove recently added camelCase rule #11330

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/api-v4": Removed
---

Recently added camelCase rule ([#11330](https://github.com/linode/manager/pull/11330))
1 change: 0 additions & 1 deletion packages/api-v4/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"sonarjs/no-redundant-jump": "warn",
"sonarjs/no-small-switch": "warn",
"no-multiple-empty-lines": "error",
"camelcase": ["warn", { "properties": "always" }],
"curly": "warn",
"sort-keys": "off",
"comma-dangle": "off",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Removed
---

Recently added camelCase rule ([#11330](https://github.com/linode/manager/pull/11330))
1 change: 0 additions & 1 deletion packages/manager/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ module.exports = {
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'array-callback-return': 'error',
camelcase: ['warn', { properties: 'always' }],
'comma-dangle': 'off', // Prettier and TS both handle and check for this one
// radix: Codacy considers it as an error, i put it here to fix it before push
curly: 'warn',
Expand Down