Skip to content

Commit 7a4246c

Browse files
committed
prettier
1 parent b308f67 commit 7a4246c

14 files changed

+36935
-36542
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
craft_version: '4'
2020
jobs: '["ecs", "phpstan", "prettier"]'
2121
notify_slack: true
22-
slack_subteam: <!subteam^S01CWPYH9D5>
22+
slack_subteam: <!subteam^SGFL9NKNZ>
2323
secrets:
2424
token: ${{ secrets.GITHUB_TOKEN }}
25-
slack_webhook_url: ${{ secrets.SLACK_PLUGIN_WEBHOOK_URL }}
25+
slack_webhook_url: ${{ secrets.SLACK_PLUGIN_WEBHOOK_URL }}

.prettierignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.md
2+
*.php
3+
composer.lock
4+
cpresources/*
5+
lib/*
6+
src/templates/*
7+
src/web/assets/**/dist/*
8+
tests/_craft/*
9+
vendor/*

.prettierrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"bracketSpacing": false,
4+
"vueIndentScriptAndStyle": true
5+
}

codeception.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
actor: Tester
22
bootstrap: _bootstrap.php
33
paths:
4-
tests: tests
5-
log: tests/_output
6-
data: tests/_data
7-
support: tests/_support
8-
envs: tests/_envs
4+
tests: tests
5+
log: tests/_output
6+
data: tests/_data
7+
support: tests/_support
8+
envs: tests/_envs
99
settings:
10-
colors: true
11-
memory_limit: 1024M
10+
colors: true
11+
memory_limit: 1024M
1212
extensions:
13-
enabled:
14-
- Codeception\Extension\RunFailed
13+
enabled:
14+
- Codeception\Extension\RunFailed
1515
params:
1616
- tests/_craft/.env
1717
modules:

composer.json

+70-70
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,75 @@
11
{
2-
"name": "craftcms/feed-me",
3-
"description": "Import content from XML, RSS, CSV or JSON feeds into entries, categories, Craft Commerce products, and more.",
4-
"type": "craft-plugin",
5-
"keywords": [
6-
"craft",
7-
"cms",
8-
"craftcms",
9-
"feed me"
10-
],
11-
"license": "proprietary",
12-
"authors": [
13-
{
14-
"name": "Pixel & Tonic",
15-
"homepage": "https://pixelandtonic.com/"
16-
},
17-
{
18-
"name": "Verbb",
19-
"homepage": "https://verbb.io"
20-
}
21-
],
22-
"support": {
23-
"email": "[email protected]",
24-
"issues": "https://github.com/craftcms/feed-me/issues?state=open",
25-
"source": "https://github.com/craftcms/feed-me",
26-
"docs": "https://docs.craftcms.com/feed-me/v4/",
27-
"rss": "https://github.com/craftcms/feed-me/commits/master.atom"
2+
"name": "craftcms/feed-me",
3+
"description": "Import content from XML, RSS, CSV or JSON feeds into entries, categories, Craft Commerce products, and more.",
4+
"type": "craft-plugin",
5+
"keywords": [
6+
"craft",
7+
"cms",
8+
"craftcms",
9+
"feed me"
10+
],
11+
"license": "proprietary",
12+
"authors": [
13+
{
14+
"name": "Pixel & Tonic",
15+
"homepage": "https://pixelandtonic.com/"
2816
},
29-
"minimum-stability": "dev",
30-
"prefer-stable": true,
31-
"require": {
32-
"php": "^8.0.2",
33-
"craftcms/cms": "^4.0.0-RC2",
34-
"cakephp/utility": "^3.3.12",
35-
"jakeasmith/http_build_url": "^1.0",
36-
"nesbot/carbon": "^1.22 || ^2.10",
37-
"league/csv": "^8.2 || ^9.0",
38-
"seld/jsonlint": "^1.7"
39-
},
40-
"require-dev": {
41-
"craftcms/ecs": "dev-main",
42-
"craftcms/phpstan": "dev-main",
43-
"codeception/codeception": "^4.0.0",
44-
"codeception/module-asserts": "^1.3"
45-
},
46-
"autoload": {
47-
"psr-4": {
48-
"craft\\feedme\\": "src/"
49-
}
50-
},
51-
"autoload-dev": {
52-
"psr-4": {
53-
"craft\\feedme\\tests\\": "tests/"
54-
}
55-
},
56-
"extra": {
57-
"name": "Feed Me",
58-
"handle": "feed-me",
59-
"documentationUrl": "https://docs.craftcms.com/feed-me/v4/"
60-
},
61-
"scripts": {
62-
"check-cs": "ecs check --ansi",
63-
"fix-cs": "ecs check --ansi --fix",
64-
"phpstan": "phpstan --memory-limit=1G"
17+
{
18+
"name": "Verbb",
19+
"homepage": "https://verbb.io"
20+
}
21+
],
22+
"support": {
23+
"email": "[email protected]",
24+
"issues": "https://github.com/craftcms/feed-me/issues?state=open",
25+
"source": "https://github.com/craftcms/feed-me",
26+
"docs": "https://docs.craftcms.com/feed-me/v4/",
27+
"rss": "https://github.com/craftcms/feed-me/commits/master.atom"
28+
},
29+
"minimum-stability": "dev",
30+
"prefer-stable": true,
31+
"require": {
32+
"php": "^8.0.2",
33+
"craftcms/cms": "^4.0.0-RC2",
34+
"cakephp/utility": "^3.3.12",
35+
"jakeasmith/http_build_url": "^1.0",
36+
"nesbot/carbon": "^1.22 || ^2.10",
37+
"league/csv": "^8.2 || ^9.0",
38+
"seld/jsonlint": "^1.7"
39+
},
40+
"require-dev": {
41+
"craftcms/ecs": "dev-main",
42+
"craftcms/phpstan": "dev-main",
43+
"codeception/codeception": "^4.0.0",
44+
"codeception/module-asserts": "^1.3"
45+
},
46+
"autoload": {
47+
"psr-4": {
48+
"craft\\feedme\\": "src/"
49+
}
50+
},
51+
"autoload-dev": {
52+
"psr-4": {
53+
"craft\\feedme\\tests\\": "tests/"
54+
}
55+
},
56+
"extra": {
57+
"name": "Feed Me",
58+
"handle": "feed-me",
59+
"documentationUrl": "https://docs.craftcms.com/feed-me/v4/"
60+
},
61+
"scripts": {
62+
"check-cs": "ecs check --ansi",
63+
"fix-cs": "ecs check --ansi --fix",
64+
"phpstan": "phpstan --memory-limit=1G"
65+
},
66+
"config": {
67+
"platform": {
68+
"php": "8.0.2"
6569
},
66-
"config": {
67-
"platform": {
68-
"php": "8.0.2"
69-
},
70-
"allow-plugins": {
71-
"yiisoft/yii2-composer": true,
72-
"craftcms/plugin-installer": true
73-
}
70+
"allow-plugins": {
71+
"yiisoft/yii2-composer": true,
72+
"craftcms/plugin-installer": true
7473
}
74+
}
7575
}

0 commit comments

Comments
 (0)