Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
chore: rename .js to .cjs to avoid ESLint issues expected in subs…
Browse files Browse the repository at this point in the history
…equent commits
  • Loading branch information
chalkygames123 committed Feb 12, 2023
1 parent 8e792c0 commit 4d7f37f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .commitlintrc.js → .commitlintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
Expand Down
2 changes: 2 additions & 0 deletions .lintstagedrc.js → .lintstagedrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
'*.js': ['eslint --fix', 'prettier --check --write'],
'!*.js': 'prettier --check --write --ignore-unknown',
Expand Down
2 changes: 2 additions & 0 deletions .prettierrc.js → .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
singleQuote: true,
trailingComma: 'all',
Expand Down
2 changes: 2 additions & 0 deletions .releaserc.js → .releaserc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
branches: ['main'],
plugins: [
Expand Down

0 comments on commit 4d7f37f

Please sign in to comment.