🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

@cspell/dict-flutter

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cspell/dict-flutter - npm Package Compare versions

Comparing version
1.1.0
to
1.1.1
+1
-1
LICENSE
The MIT License (MIT)
Copyright (c) 2017-2020 Jason Dent <jason@streetsidesoftware.nl>
Copyright (c) 2017-2025 Street Side Software <support@streetsidesoftware.nl>

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@cspell/dict-flutter",
"version": "1.1.0",
"version": "1.1.1",
"description": "Flutter dictionary for cspell.",

@@ -45,3 +45,3 @@ "publishConfig": {

],
"gitHead": "d409535aeea67d6b0d57df3bbd4d3584516b2ffe"
"gitHead": "30c5c53b8e28152fc1d8a6cf0c872b068a64221a"
}
+72
-22

@@ -7,2 +7,4 @@ # CSpell flutter Dictionary

<!--- @@inject: ../../static/requirements.md --->
## Requirements

@@ -12,42 +14,76 @@

| ------------------------------------------------------------------------------------------------------------------------------------ | ------- |
| [cspell](https://github.com/streetsidesoftware/cspell) | `>= 6` |
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>= 2` |
| [cspell](https://github.com/streetsidesoftware/cspell) | `>= 8` |
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>= 4` |
## Installation
<!--- @@inject-end: ../../static/requirements.md --->
Global Install and add to cspell global settings.
<!--- @@inject: ./static/install.md --->
```sh
npm install -g @cspell/dict-flutter
cspell link add @cspell/dict-flutter
```
## Local Installation
## Uninstall from cspell
**This package is bundled with CSpell.**
```sh
cspell link remove @cspell/dict-flutter
```
## Configuration
## Manual Installation
<details>
<summary>VSCode Settings</summary>
Manual installation is useful if you want to include this dictionary as part of your CI/CD lint process.
Add the following to your VSCode settings:
**`.vscode/settings.json`**
```jsonc
{
"cSpell.dictionaries": ["flutter"],
}
```
npm i @cspell/dict-flutter
```
The `cspell-ext.json` file in this package should be added to the import section in your `cspell.json` file.
</details>
```javascript
<details>
<summary>CSpell Settings `cspell.json`</summary>
**`cspell.json`**
```jsonc
{
// …
"import": ["@cspell/dict-flutter/cspell-ext.json"],
// …
"dictionaries": ["flutter"],
}
```
# Dictionary Development
</details>
<details>
<summary>CSpell Settings `cspell.config.yaml`</summary>
**`cspell.config.yaml`**
```yaml
dictionaries:
- flutter
```
</details>
> [!NOTE]
> **This package is bundled with CSpell.**
<!--- @@inject-end: ./static/install.md --->
<!--- @@inject: ../../static/contributing.md --->
## Contributing
Please help correct any mistakes in the dictionaries.
See: [Contributing](https://github.com/streetsidesoftware/cspell-dicts#contributing)
Special thanks to all of our amazing contributors!
### Dictionary Development
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
<!--- @@inject-end: ../../static/contributing.md --->
## License

@@ -58,1 +94,15 @@

> Some packages may have other licenses included.
<!--- @@inject: ../../static/footer.md --->
<br/>
---
<p align="center">
Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
<img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
</a>
</p>
<!--- @@inject-end: ../../static/footer.md --->