Skip to content

Commit

Permalink
Merge branch '#257-eslint-fix' into #217-contact-page
Browse files Browse the repository at this point in the history
  • Loading branch information
brzozka committed Jun 13, 2024
2 parents 69f1463 + 2416a45 commit c1a47fc
Show file tree
Hide file tree
Showing 3 changed files with 122 additions and 3 deletions.
25 changes: 22 additions & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
import blumilkDefault from '@blumilksoftware/eslint-config'
import blumilkDefault from "@blumilksoftware/eslint-config";
import htmlPlugin from "eslint-plugin-html";

export default [
...blumilkDefault,
]
...blumilkDefault,
{
files: [ "**/*.blade.php"],
settings: {
"html/html-extensions": [".html", ".blade.php"],
},
plugins: {
html: htmlPlugin,
},
rules: {
"tailwindcss/no-custom-classname": "off",
"no-undef": "off",
},
languageOptions: {
globals: {
mapboxgl: "readonly",
},
},
},
];
99 changes: 99 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-vue": "^9.18.1",
"postcss": "^8.4.31",
Expand Down

0 comments on commit c1a47fc

Please sign in to comment.