-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
103 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Keywords or terms specific to the Dart or Flutter ecosystem: | ||
audioplayers # A Flutter plugin to play multiple simultaneously audio files. | ||
cupertino # Flutter module containing iOS-style widgets. | ||
endtemplate # Dart doc macro used to end a reusable piece of documentation. | ||
LTWH # From Flutter, abbreviation left, top, width and height. | ||
mockingjay # A Flutter package for mocking navigation. | ||
mocktail # A Dart mock package. | ||
pubspec # File name where all the package metadata goes in. | ||
unawaited # A Dart function to explicitly ignore a future. |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Other phrases that are not words but are getting flagged. Typically contained in localization files or URLs: | ||
aplicación # "Application" in Spanish. | ||
botón # "Button" in Spanish. | ||
buen # "Good" in Spanish. | ||
contador # "Counter" in Spanish. | ||
empieza # "Begin" in Spanish. | ||
inicial # "Initial" in Spanish. | ||
inicio # "Start" in Spanish. | ||
juego # "Game" in Spanish. | ||
mostrado # "Shown" in Spanish. | ||
página # "Page" in Spanish. | ||
texto # "Text" in Spanish. |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Specific people's names and/or usernames: | ||
luan # Maintainer of the Flutter `audioplayers` plugin. |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Actual english words (or common abbreviations) missing from CSpell: | ||
CLI # Abbreviation for Command Line Interface. | ||
CLIs # Plural of the abbreviation for Command Line Interface. | ||
CLI's # Belonging to a CLI. | ||
dependabot # Automated dependency updates built into GitHub. | ||
docusaurs # An optimized site generator in React. | ||
genhtml # Tool to generate an HTML view from LCOV coverage data files. | ||
gradlew # Wrapper tool that uses Gradle. | ||
lcov # Graphical tool for displaying coverage reports. | ||
localizable # Capable of being localized. | ||
negatable # Capable of being negated. | ||
nojekyll # File to bypass Jekyll processing on GitHub. | ||
pngs # Abbreviation for an image format named Portable Network Graphics. | ||
preload # Put information onto a system before it is used. | ||
prettierignore # Ignore file name for Prettier. | ||
prettierrc # Configuration file name for Prettier. | ||
recase # Casing once again. | ||
roadmap # A plan or strategy intended to achieve a particular goal. | ||
routable # Capable of being routed. | ||
theming # Give a particular theme or setting. | ||
unicorn # A mythical animal. | ||
nicorn # "unicorn", but without the "u". | ||
unmutes # To allow to produce sound again. | ||
verygood # Very Good, but without a space. | ||
xcode # Apple's integrated development environment. | ||
xcworkspace # Abbreviation for Xcode workspace. | ||
xcassets # Abbreviation for Xcode assets. |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: spell_checker | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: zwaldowski/cspell-action@v1 | ||
with: | ||
paths: "**/*.{md,dart}" | ||
config: .github/cspell.json | ||
exclude: ".gitignore **.gen.dart **.g.dart" |
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