Skip to content

Commit

Permalink
Change .eslintrc.js to use LF line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian-Magnuson committed Nov 12, 2023
1 parent 91ae909 commit e9372c3
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
module.exports = {
extends: [
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"plugin:unicorn/recommended",
"plugin:prettier/recommended",
],
parserOptions: {
project: "./tsconfig.json",
},
rules: {
"unicorn/prevent-abbreviations": [
"error",
{
"replacements": {
"prop": false,
"props": false,
}
}
]
}
};
module.exports = {
extends: [
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"plugin:unicorn/recommended",
"plugin:prettier/recommended",
],
parserOptions: {
project: "./tsconfig.json",
},
rules: {
"unicorn/prevent-abbreviations": [
"error",
{
"replacements": {
"prop": false,
"props": false,
}
}
]
}
};

0 comments on commit e9372c3

Please sign in to comment.