├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── npm-publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── rules │ ├── one-by-one-arguments.md │ └── prefer-classnames-function.md ├── jsconfig.json ├── lib ├── index.js ├── rules │ ├── one-by-one-arguments.js │ └── prefer-classnames-function.js └── utils.js ├── package.json ├── tests ├── eslint.config.mjs └── lib │ └── rules │ ├── one-by-one-arguments.mjs │ └── prefer-classnames-function.mjs └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/README.md -------------------------------------------------------------------------------- /docs/rules/one-by-one-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/docs/rules/one-by-one-arguments.md -------------------------------------------------------------------------------- /docs/rules/prefer-classnames-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/docs/rules/prefer-classnames-function.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/rules/one-by-one-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/lib/rules/one-by-one-arguments.js -------------------------------------------------------------------------------- /lib/rules/prefer-classnames-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/lib/rules/prefer-classnames-function.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/package.json -------------------------------------------------------------------------------- /tests/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/tests/eslint.config.mjs -------------------------------------------------------------------------------- /tests/lib/rules/one-by-one-arguments.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/tests/lib/rules/one-by-one-arguments.mjs -------------------------------------------------------------------------------- /tests/lib/rules/prefer-classnames-function.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/tests/lib/rules/prefer-classnames-function.mjs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsubal/eslint-plugin-classnames/HEAD/yarn.lock --------------------------------------------------------------------------------