Skip to content

Commit 8b0a4c3

Browse files
committed
chore: clean up configuration and dotfiles
- rename env-sample to .env.example - delete unnecessary dotfiles - move browserslist config into package.json - remove outdated deployment configs/workflows - move WP/PHP configs to their own folder - remove copy script - install chokidar-cli - remove watch script - remove unused dependencies - remove globals setting for eslint - add prettier config
1 parent 68e9bba commit 8b0a4c3

25 files changed

+523
-263
lines changed

.browserslistrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.circleci/config.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.codeclimate.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.browserslistrc
22
.circleci
33
.env
4+
.env.example
45
.eslintrc
56
.git
67
.github
@@ -10,7 +11,6 @@
1011
.stylelintrc.json
1112
README.md
1213
docs
13-
env-sample
1414
node_modules
1515
package-lock.json
1616
package.json
File renamed without changes.

.eslintrc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
"plugin:react-hooks/recommended",
1515
"prettier"
1616
],
17-
"globals": {
18-
"Rollbar": true,
19-
"locations": true
20-
},
2117
"settings": {
2218
"react": {
2319
"version": "^18.2.0"

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Configs
2+
package.json
3+
package-lock.json
4+
tsconfig.json
5+
6+
# composer
7+
composer.json
8+
composer.lock
9+
10+
# npm
11+
node_modules
12+
npm-debug.log
13+
14+
# Build
15+
/out
16+
/build
17+
/dist
18+
19+
# IDEs
20+
.vscode
21+
.idea
22+
23+
# Swap
24+
*~
25+
*.swp
26+
*.swo
27+
28+
# Next.js
29+
.next
30+
next.config.json
31+
next-env.d.ts
32+
33+
# WordPress
34+
wp-content
35+
theme
36+
uploads
37+
vendor
38+
plugins

.prettierrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"printWidth": 110,
3+
"endOfLine": "lf",
4+
"trailingComma": "es5",
5+
"tabWidth": 2,
6+
"useTabs": true,
7+
"semi": true,
8+
"singleQuote": true,
9+
"quoteProps": "as-needed",
10+
"jsxSingleQuote": false,
11+
"bracketSpacing": true,
12+
"bracketSameLine": false,
13+
"arrowParens": "always"
14+
}

Dockerfile.deploy

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)