Skip to content

Commit 994a068

Browse files
committed
Format according editor config
1 parent f6ebd89 commit 994a068

3 files changed

Lines changed: 87 additions & 55 deletions

File tree

.editorconfig

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
# WordPress Coding Standards
5+
# https://make.wordpress.org/core/handbook/coding-standards/
6+
7+
root = true
8+
9+
[*]
10+
charset = utf-8
11+
end_of_line = lf
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
indent_style = tab
15+
16+
[*.yml]
17+
indent_style = space
18+
indent_size = 2
19+
20+
[*.md]
21+
trim_trailing_whitespace = false
22+
23+
[{*.txt,wp-config-sample.php}]
24+
end_of_line = crlf

composer.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"name": "wp-pay-extensions/formidable-forms",
33
"description": "Formidable Forms driver for the WordPress payment processing library.",
4-
"keywords": ["wordpress", "wp", "pay", "formidable", "forms", "extension", "pronamic"],
4+
"keywords": [
5+
"wordpress",
6+
"wp",
7+
"pay",
8+
"formidable",
9+
"forms",
10+
"extension",
11+
"pronamic"
12+
],
513
"homepage": "http://www.wp-pay.org/extensions/formidable-forms/",
614
"license": "GPL-3.0-or-later",
715
"type": "wordpress-plugin",
@@ -29,7 +37,7 @@
2937
"Pronamic\\WordPress\\Pay\\Extensions\\FormidableForms\\": "src/"
3038
}
3139
},
32-
"repositories":[
40+
"repositories": [
3341
{
3442
"type": "composer",
3543
"url": "https://wpackagist.org/"

package.json

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
11
{
2-
"name": "formidable-forms",
3-
"version": "4.4.4",
4-
"description": "Formidable Forms driver for the WordPress payment processing library.",
5-
"repository": {
6-
"type": "git",
7-
"url": "https://github.com/wp-pay-extensions/formidable-forms"
8-
},
9-
"keywords": [
10-
"wordpress",
11-
"wp",
12-
"pay",
13-
"formidable",
14-
"forms",
15-
"gateway",
16-
"pronamic"
17-
],
18-
"author": {
19-
"name": "Pronamic",
20-
"email": "info@pronamic.nl",
21-
"url": "http://www.pronamic.nl/"
22-
},
23-
"contributors": [
24-
{
25-
"name": "Remco Tolsma",
26-
"email": "info@remcotolsma.nl",
27-
"url": "http://www.remcotolsma.nl/"
28-
}
29-
],
30-
"license": "GPL-3.0",
31-
"bugs": {
32-
"url": "https://github.com/wp-pay-extensions/formidable-forms/issues"
33-
},
34-
"homepage": "http://www.wp-pay.org/extensions/formidable-forms/",
35-
"devDependencies": {
36-
"@wordpress/env": "^11.3.0",
37-
"autoprefixer": "^9.8.8",
38-
"grunt": "^1.6.1",
39-
"grunt-contrib-cssmin": "^3.0.0",
40-
"grunt-contrib-jshint": "^3.0.0",
41-
"grunt-contrib-uglify": "^5.0.0",
42-
"grunt-phpcs": "^0.4.0",
43-
"grunt-phplint": "0.1.0",
44-
"grunt-phpmd": "^0.1.1",
45-
"grunt-phpunit": "^0.3.6",
46-
"grunt-postcss": "^0.9.0",
47-
"grunt-sass": "^4.0.0",
48-
"grunt-sass-lint": "^0.2.4",
49-
"load-grunt-tasks": "^5.1.0"
50-
},
51-
"scripts": {
52-
"start": "wp-env start",
53-
"login": "wp-env run cli wp user one-time-login admin"
54-
}
2+
"name": "formidable-forms",
3+
"version": "4.4.4",
4+
"description": "Formidable Forms driver for the WordPress payment processing library.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/wp-pay-extensions/formidable-forms"
8+
},
9+
"keywords": [
10+
"wordpress",
11+
"wp",
12+
"pay",
13+
"formidable",
14+
"forms",
15+
"gateway",
16+
"pronamic"
17+
],
18+
"author": {
19+
"name": "Pronamic",
20+
"email": "info@pronamic.nl",
21+
"url": "http://www.pronamic.nl/"
22+
},
23+
"contributors": [
24+
{
25+
"name": "Remco Tolsma",
26+
"email": "info@remcotolsma.nl",
27+
"url": "http://www.remcotolsma.nl/"
28+
}
29+
],
30+
"license": "GPL-3.0",
31+
"bugs": {
32+
"url": "https://github.com/wp-pay-extensions/formidable-forms/issues"
33+
},
34+
"homepage": "http://www.wp-pay.org/extensions/formidable-forms/",
35+
"devDependencies": {
36+
"@wordpress/env": "^11.3.0",
37+
"autoprefixer": "^9.8.8",
38+
"grunt": "^1.6.1",
39+
"grunt-contrib-cssmin": "^3.0.0",
40+
"grunt-contrib-jshint": "^3.0.0",
41+
"grunt-contrib-uglify": "^5.0.0",
42+
"grunt-phpcs": "^0.4.0",
43+
"grunt-phplint": "0.1.0",
44+
"grunt-phpmd": "^0.1.1",
45+
"grunt-phpunit": "^0.3.6",
46+
"grunt-postcss": "^0.9.0",
47+
"grunt-sass": "^4.0.0",
48+
"grunt-sass-lint": "^0.2.4",
49+
"load-grunt-tasks": "^5.1.0"
50+
},
51+
"scripts": {
52+
"start": "wp-env start",
53+
"login": "wp-env run cli wp user one-time-login admin"
54+
}
5555
}

0 commit comments

Comments
 (0)