nandi/vflutter_ffipublic Fork 0
4506a586d7400b00d732dcb97167be75ab41cab1
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

analysis_options.yaml · 39 lines · 1.7 KBYAML Blame HistoryRaw
Add a Mandelbrot example app, and a V kernel worth demonstrating 81540bb nandithebull 10h ago1# This file configures the analyzer, which statically analyzes Dart code to
2# check for errors, warnings, and lints.
3#
4# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6# invoked from the command line by running `flutter analyze`.
7
8# The following line activates a set of recommended lints for Flutter apps,
9# packages, and plugins designed to encourage good coding practices.
10include: package:flutter_lints/flutter.yaml
11
12analyzer:
13 exclude:
14 - build/**
15 - linux/**
Add a WebAssembly backend for the example 728acaa nandithebull 8h ago16 - web/**
Add a Mandelbrot example app, and a V kernel worth demonstrating 81540bb nandithebull 10h ago17 errors:
18 # The headless scripts in lib/ are command-line tools whose entire output
19 # is stdout, and memory_check.dart talks to dart:ffi directly on purpose.
20 avoid_print: ignore
21 depend_on_referenced_packages: ignore
22
23linter:
24 # The lint rules applied to this project can be customized in the
25 # section below to disable rules from the `package:flutter_lints/flutter.yaml`
26 # included above or to enable additional rules. A list of all available lints
27 # and their documentation is published at https://dart.dev/lints.
28 #
29 # Instead of disabling a lint rule for the entire project in the
30 # section below, it can also be suppressed for a single line of code
31 # or a specific dart file by using the `// ignore: name_of_lint` and
32 # `// ignore_for_file: name_of_lint` syntax on the line or in the file
33 # producing the lint.
34 rules:
35 # avoid_print: false # Uncomment to disable the `avoid_print` rule
36 # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
37
38# Additional information about this file can be found at
39# https://dart.dev/guides/language/analysis-options