-
-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
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/],
},
],
Metadata
Metadata
Assignees
Labels
No labels