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
Angular makes use of many decorators. It'd be great to add a default configuration that supports whatever idiomatic Angular is
The text was updated successfully, but these errors were encountered:
'decorator-position/decorator-position': [ 'error', { printWidth: 120, properties: 'prefer-inline', methods: 'above', overrides: { 'prefer-inline': [ ['@Pipe', { withArgs: true }], ['@Directive', { withArgs: true }], ['@Injectable', { withArgs: true }] ] } } ],
Hello, this is not working for
@Pipe({ name: 'my' }) export class MyPipe implements PipeTransform { public transform(): void { /// ... } }
Expected:
Sorry, something went wrong.
Hello! Thanks for reporting! And chance you'd be willing to set up a minimal reproduction following examples here?: https://github.com/NullVoxPopuli/eslint-plugin-decorator-position/tree/master/smoke-tests/issue-reproductions
No branches or pull requests
Angular makes use of many decorators. It'd be great to add a default configuration that supports whatever idiomatic Angular is
The text was updated successfully, but these errors were encountered: