Skip to content

Commit

Permalink
Format with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
deen13 committed Apr 20, 2024
1 parent 24b67d0 commit 184f1aa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
const path = require('path');
const path = require("path");

module.exports = {
env: {
es6: true,
browser: true,
},
settings: {
'import/resolver': {
"import/resolver": {
node: {
paths: ['src'],
extensions: ['.js', '.jsx', '.ts', '.d.ts', '.tsx'],
paths: ["src"],
extensions: [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
},
typescript: {
project: './tsconfig.json',
project: "./tsconfig.json",
},
alias: {
map: [['~', path.resolve(__dirname, './src')]],
extensions: ['.js', '.jsx', '.ts', '.d.ts', '.tsx'],
map: [["~", path.resolve(__dirname, "./src")]],
extensions: [".js", ".jsx", ".ts", ".d.ts", ".tsx"],
},
},
},
Expand Down

0 comments on commit 184f1aa

Please sign in to comment.