mirror of https://github.com/flutter/pinball.git
feat: add cspell (#399)
* feat: add cspell * revert main and add spell check as a different flow * check all files * all files again * another regex * dart files * more changes * actually checkout the repo * adding words * more words * more words and starting to change code * more words * more words * more words * more words * more words * fixing words * fixing words * adding and fixing * fixes and words * word fixes * fixes and wordspull/401/head
parent
6aef28ed8c
commit
ce39bc1471
@ -0,0 +1,21 @@
|
|||||||
|
name: spell_check
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
on: [pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Spell Check
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Check spelling
|
||||||
|
uses: zwaldowski/cspell-action@v1
|
||||||
|
with:
|
||||||
|
paths: '**/*.{dart,arb}'
|
||||||
|
config: .vscode/cspell.json
|
@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2",
|
||||||
|
"enabled": true,
|
||||||
|
"language": "en",
|
||||||
|
"words": [
|
||||||
|
"animatronic",
|
||||||
|
"argb",
|
||||||
|
"audioplayers",
|
||||||
|
"backbox",
|
||||||
|
"bezier",
|
||||||
|
"cupertino",
|
||||||
|
"dashbook",
|
||||||
|
"deserialization",
|
||||||
|
"dpad",
|
||||||
|
"endtemplate",
|
||||||
|
"firestore",
|
||||||
|
"gapless",
|
||||||
|
"goldens",
|
||||||
|
"leaderboard",
|
||||||
|
"loadables",
|
||||||
|
"mixins",
|
||||||
|
"mocktail",
|
||||||
|
"multiball",
|
||||||
|
"multiballs",
|
||||||
|
"occluder",
|
||||||
|
"pixelated",
|
||||||
|
"pixeloid",
|
||||||
|
"rects",
|
||||||
|
"rrect",
|
||||||
|
"serializable",
|
||||||
|
"sparky's",
|
||||||
|
"theming",
|
||||||
|
"unawaited",
|
||||||
|
"unfocus",
|
||||||
|
"unlayered",
|
||||||
|
"vsync"
|
||||||
|
],
|
||||||
|
"ignorePaths": [
|
||||||
|
".github/workflows/**"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in new issue