diff --git a/packages/api-v4/.changeset/pr-11330-removed-1732610877556.md b/packages/api-v4/.changeset/pr-11330-removed-1732610877556.md new file mode 100644 index 00000000000..8a2ef67f05a --- /dev/null +++ b/packages/api-v4/.changeset/pr-11330-removed-1732610877556.md @@ -0,0 +1,5 @@ +--- +"@linode/api-v4": Removed +--- + +Recently added camelCase rule ([#11330](https://github.com/linode/manager/pull/11330)) diff --git a/packages/api-v4/.eslintrc.json b/packages/api-v4/.eslintrc.json index aa613f8f952..039685b3d24 100644 --- a/packages/api-v4/.eslintrc.json +++ b/packages/api-v4/.eslintrc.json @@ -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", diff --git a/packages/manager/.changeset/pr-11330-removed-1732610901455.md b/packages/manager/.changeset/pr-11330-removed-1732610901455.md new file mode 100644 index 00000000000..757e92d81ae --- /dev/null +++ b/packages/manager/.changeset/pr-11330-removed-1732610901455.md @@ -0,0 +1,5 @@ +--- +"@linode/manager": Removed +--- + +Recently added camelCase rule ([#11330](https://github.com/linode/manager/pull/11330)) diff --git a/packages/manager/.eslintrc.cjs b/packages/manager/.eslintrc.cjs index ae58ca2a7f9..37a8ee55d6c 100644 --- a/packages/manager/.eslintrc.cjs +++ b/packages/manager/.eslintrc.cjs @@ -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',