-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define indentation for json and yaml files
yaml files cannot be indented with tabs, so we at least can explicitly define how many spaces should be used.
- Loading branch information
Showing
3 changed files
with
37 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 15 | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
{ | ||
"name": "new-lexeme-special-page", | ||
"private": true, | ||
"version": "0.0.1", | ||
"description": "Form for the upcoming revival of the NewLexeme special page on Wikidata", | ||
"main": "main.ts", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/wmde/new-lexeme-special-page.git" | ||
}, | ||
"keywords": [ | ||
"Wikidata" | ||
], | ||
"author": "The Wikidata team", | ||
"license": "GPL-2.0-or-later", | ||
"bugs": { | ||
"url": "https://phabricator.wikimedia.org/project/board/5674/" | ||
}, | ||
"homepage": "https://github.com/wmde/new-lexeme-special-page#readme" | ||
"name": "new-lexeme-special-page", | ||
"private": true, | ||
"version": "0.0.1", | ||
"description": "Form for the upcoming revival of the NewLexeme special page on Wikidata", | ||
"main": "main.ts", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"prepare": "husky install", | ||
"fix": "prettier --write '**/*.{json,yml,yaml}'" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/wmde/new-lexeme-special-page.git" | ||
}, | ||
"keywords": [ | ||
"Wikidata" | ||
], | ||
"author": "The Wikidata team", | ||
"license": "GPL-2.0-or-later", | ||
"bugs": { | ||
"url": "https://phabricator.wikimedia.org/project/board/5674/" | ||
}, | ||
"homepage": "https://github.com/wmde/new-lexeme-special-page#readme" | ||
} |