mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 00:31:07 -05:00
update documentation for dart
This commit is contained in:
parent
05e73c6127
commit
4ea4aef02e
4 changed files with 2 additions and 4 deletions
|
@ -1,5 +1,4 @@
|
|||
// empty_constructor_bodies bad {}
|
||||
|
||||
class Point {
|
||||
int x, y;
|
||||
Point(this.x, this.y) {}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
// empty_constructor_bodies good ;
|
||||
|
||||
class Point {
|
||||
int x, y;
|
||||
Point(this.x, this.y);
|
||||
|
|
|
@ -190,7 +190,7 @@ RUN wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/s
|
|||
RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-${GLIBC_VERSION}.apk
|
||||
RUN apk add glibc-${GLIBC_VERSION}.apk
|
||||
|
||||
# install dart sdk
|
||||
# stable dart sdk: https://dart.dev/get-dart#release-channels
|
||||
ARG DART_VERSION='2.8.4'
|
||||
RUN wget https://storage.googleapis.com/dart-archive/channels/stable/release/${DART_VERSION}/sdk/dartsdk-linux-x64-release.zip -O - -q | unzip - \
|
||||
&& chmod +x dart-sdk/bin/dart* \
|
||||
|
|
|
@ -39,7 +39,7 @@ Developers on **GitHub** can call the **GitHub Action** to lint their code base
|
|||
| **CSS** | [stylelint](https://stylelint.io/) |
|
||||
| **Clojure** | [clj-kondo](https://github.com/borkdude/clj-kondo) |
|
||||
| **CoffeeScript** | [coffeelint](https://coffeelint.github.io/) |
|
||||
| **Dart** | [dartanalyzer](https://dart.dev/tools/dartanalyzer) |
|
||||
| **Dart** | [dartanalyzer](https://dart.dev/guides/language/analysis-options) |
|
||||
| **Dockerfile** | [dockerfilelint](https://github.com/replicatedhq/dockerfilelint.git) |
|
||||
| **EDITORCONFIG** | [editorconfig-checker](https://github.com/editorconfig-checker/editorconfig-checker) |
|
||||
| **ENV** | [dotenv-linter](https://github.com/dotenv-linter/dotenv-linter) |
|
||||
|
|
Loading…
Reference in a new issue