Skip to content

Commit 5195958

Browse files
authored
Merge pull request #12 from preprocess/feature/replace-formatting-with-prettier
Replace formatting with Prettier
2 parents d0e3d59 + f95663d commit 5195958

File tree

9 files changed

+97
-1098
lines changed

9 files changed

+97
-1098
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/coverage
22
/vendor
3-
/composer.lock
3+
/node_modules

.prettierrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"printWidth": 120,
3+
"tabWidth": 4,
4+
"useTabs": false,
5+
"semi": false,
6+
"singleQuote": false,
7+
"trailingComma": "all",
8+
"bracketSpacing": true,
9+
"jsxBracketSameLine": false,
10+
"arrowParens": "avoid",
11+
"proseWrap": "never",
12+
"parser": "php"
13+
}

hidden/composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"require": {
3-
"friendsofphp/php-cs-fixer": "^2.0",
43
"yay/yay": "^0.7.0"
54
}
65
}

0 commit comments

Comments
 (0)