Skip to content

Commit

Permalink
feat: add stylistic plugin to typescript.js partial
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusBaldi committed Feb 7, 2025
1 parent 5bdb36d commit ea705aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion partials/typescript.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
const typescriptESLintParser = require('@typescript-eslint/parser');
const typescriptESLintParser = require('@typescript-eslint/parser'),
stylistic = require('@stylistic/eslint-plugin');

module.exports = {
plugins: {
'@stylistic': stylistic,
},
languageOptions: {
'parserOptions': {
'parser': typescriptESLintParser,
Expand Down

0 comments on commit ea705aa

Please sign in to comment.