We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://eslint.org/docs/user-guide/configuring#specifying-processor
Ex. https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/filename-case.md PascalCase for .tsx files. camelCase for .ts and .js files
// Ignore "up" and "down" migration methods generated by typeorm. // https://typeorm.io/#/migrations/creating-a-new-migration // Found in the templates in packages/server/src/migration/ "class-methods-use-this": ["error", { exceptMethods: ["up", "down"] }], ... "unicorn/filename-case": [ "error", { cases: { camelCase: true, pascalCase: true, }, // Ignore migration files generated by typeorm. // https://typeorm.io/#/migrations/creating-a-new-migration // Found in the templates in packages/server/src/migration/ ignore: [/\d+-.+ts/], }, ],
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://eslint.org/docs/user-guide/configuring#specifying-processor
Ex. https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/filename-case.md
PascalCase for .tsx files. camelCase for .ts and .js files
The text was updated successfully, but these errors were encountered: