Skip to content

Commit bfe97e0

Browse files
author
Ante Laca
committed
refactor
1 parent 38ff441 commit bfe97e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+4757
-10658
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 4
8+
tab_width = 4
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.txt]
14+
trim_trailing_whitespace = false

.prettierignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Ignore node modules
2+
node_modules/*
3+
4+
# Ignore Composer packages
5+
vendor/*
6+
7+
# Ignore Directories
8+
sample-data/*
9+
10+
# Ignore Files
11+
phpcs.xml
12+
phpcs.xml.dist
13+
package-lock.json
14+
composer.lock

.prettierrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"tabWidth": 4,
3+
"trailingComma": "es5",
4+
"printWidth": 120,
5+
"bracketSpacing": false,
6+
"singleQuote": true
7+
}

jest.config.js

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

0 commit comments

Comments
 (0)