Skip to content

Commit

Permalink
Merge pull request #24 from szepeviktor/patch-1
Browse files Browse the repository at this point in the history
enforces the use of extensions
  • Loading branch information
adamlaki authored Mar 8, 2024
2 parents aee9daa + cec0acf commit 6d6a9aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"rules": {
"no-param-reassign": 0,
"no-shadow": "off",
"no-new": "off"
"no-new": "off",
"import/extensions": ["error", "always"]
}
}
2 changes: 1 addition & 1 deletion src/js/scripts.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
getCookie,
} from './cookie.js'; // eslint-disable-line
} from './cookie.js';

if (getCookie('spruce-cookie-law-analytics') === 'accepted') {
function gtag() { // eslint-disable-line
Expand Down

0 comments on commit 6d6a9aa

Please sign in to comment.