1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 07:27:39 +02:00

chore: flarum-cli audit infra --fix

This commit is contained in:
Alexander Skvortsov
2022-01-20 03:17:07 -05:00
parent cf7c387e59
commit 7e1995d86b
4 changed files with 44 additions and 4 deletions

View File

@@ -15,5 +15,5 @@ indent_size = 2
[*.{diff,md}] [*.{diff,md}]
trim_trailing_whitespace = false trim_trailing_whitespace = false
[*.php] [*.{php,xml,json}]
indent_size = 4 indent_size = 4

View File

@@ -1,3 +1,18 @@
.gitattributes export-ignore .gitattributes export-ignore
.gitignore export-ignore .gitignore export-ignore
.gitmodules export-ignore
.github export-ignore
.travis export-ignore
.travis.yml export-ignore .travis.yml export-ignore
.editorconfig export-ignore
.styleci.yml export-ignore
phpunit.xml export-ignore
tests export-ignore
js/dist/* -diff
js/dist/* linguist-generated
js/dist-typings/* linguist-generated
js/yarn.lock -diff
* text=auto eol=lf

View File

@@ -1,6 +1,12 @@
/vendor /vendor
composer.lock
composer.phar composer.phar
.DS_Store .DS_Store
Thumbs.db Thumbs.db
bower_components tests/.phpunit.result.cache
node_modules /tests/integration/tmp
.vagrant
.idea/*
.vscode
js/coverage-ts

View File

@@ -2,7 +2,9 @@
"name": "flarum/bbcode", "name": "flarum/bbcode",
"description": "Allow posts to be formatted with BBCode.", "description": "Allow posts to be formatted with BBCode.",
"type": "flarum-extension", "type": "flarum-extension",
"keywords": ["formatting"], "keywords": [
"formatting"
],
"license": "MIT", "license": "MIT",
"support": { "support": {
"issues": "https://github.com/flarum/core/issues", "issues": "https://github.com/flarum/core/issues",
@@ -31,6 +33,23 @@
"backgroundColor": "#238C59", "backgroundColor": "#238C59",
"color": "#fff" "color": "#fff"
} }
},
"flarum-cli": {
"modules": {
"admin": false,
"forum": false,
"js": false,
"jsCommon": false,
"css": false,
"gitConf": true,
"githubActions": false,
"prettier": false,
"typescript": false,
"bundlewatch": false,
"backendTesting": false,
"editorConfig": true,
"styleci": true
}
} }
} }
} }