diff --git a/projects/eslint-plugin-experience/configs/naming-convention.js b/projects/eslint-plugin-experience/configs/naming-convention.js index a4946de5..199b9327 100644 --- a/projects/eslint-plugin-experience/configs/naming-convention.js +++ b/projects/eslint-plugin-experience/configs/naming-convention.js @@ -68,6 +68,14 @@ module.exports = { match: false, }, }, + { + selector: 'classProperty', + format: ['strictCamelCase'], + filter: { + regex: '[API|CVC|HTML|axisX|axisY]', + match: false, + }, + }, ], }, }, diff --git a/projects/eslint-plugin-experience/configs/taiga-naming-convention.js b/projects/eslint-plugin-experience/configs/taiga-naming-convention.js index f1e0eea1..c94b4517 100644 --- a/projects/eslint-plugin-experience/configs/taiga-naming-convention.js +++ b/projects/eslint-plugin-experience/configs/taiga-naming-convention.js @@ -84,6 +84,14 @@ module.exports = { match: false, }, }, + { + selector: 'classProperty', + format: ['strictCamelCase'], + filter: { + regex: '[API|CVC|HTML|axisX|axisY]', + match: false, + }, + }, ], }, },