Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
francoism90 committed Jul 24, 2024
1 parent aaa2d14 commit ff8469d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 54 deletions.
38 changes: 0 additions & 38 deletions .eslintrc.cjs

This file was deleted.

17 changes: 17 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import globals from "globals";
import pluginJs from "@eslint/js";

export default [
{
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
},
},
pluginJs.configs.recommended,
{
ignores: ["node_modules/", "vendor/", "storage/", "public/"],
},
];
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
"format": "npx prettier . --write"
},
"devDependencies": {
"@angular-eslint/template-parser": "^17.3.0",
"@eslint/js": "^9.7.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/parser": "^7.2.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.19",
"eslint": "^9.7.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tailwindcss": "^3.15.1",
"postcss": "^8.4.35",
"postcss-import": "^16.0.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.1"
"eslint-plugin-tailwindcss": "^3.17.4",
"globals": "^15.8.0",
"postcss": "^8.4.39",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.6",
"vitest": "^2.0.4"
}
}
8 changes: 4 additions & 4 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
trailingComma: 'es5',
trailingComma: "es5",
semi: true,
singleQuote: true,
printWidth: 180,
plugins: ['prettier-plugin-tailwindcss'],
singleQuote: false,
printWidth: 100,
plugins: ["prettier-plugin-tailwindcss"]
};

0 comments on commit ff8469d

Please sign in to comment.