Skip to content

Commit c5647e2

Browse files
author
Christoph Bühler
committed
chore: previous code
1 parent fc21eec commit c5647e2

14 files changed

+965
-56
lines changed

.gitignore

Lines changed: 68 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,76 @@
1-
# See https://www.dartlang.org/guides/libraries/private-files
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
222

3-
# Files and directories created by pub
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
425
.dart_tool/
26+
.flutter-plugins
27+
.flutter-plugins-dependencies
528
.packages
29+
.pub-cache/
30+
.pub/
631
build/
7-
832
pubspec.lock
933

10-
# Generated Dart Files
11-
*.g.dart
34+
# Android related
35+
**/android/**/gradle-wrapper.jar
36+
**/android/.gradle
37+
**/android/captures/
38+
**/android/gradlew
39+
**/android/gradlew.bat
40+
**/android/local.properties
41+
**/android/**/GeneratedPluginRegistrant.java
1242

13-
# Directory created by dartdoc
14-
# If you don't generate documentation locally you can remove this line.
15-
doc/api/
43+
# iOS/XCode related
44+
**/ios/**/*.mode1v3
45+
**/ios/**/*.mode2v3
46+
**/ios/**/*.moved-aside
47+
**/ios/**/*.pbxuser
48+
**/ios/**/*.perspectivev3
49+
**/ios/**/*sync/
50+
**/ios/**/.sconsign.dblite
51+
**/ios/**/.tags*
52+
**/ios/**/.vagrant/
53+
**/ios/**/DerivedData/
54+
**/ios/**/Icon?
55+
**/ios/**/Pods/
56+
**/ios/**/.symlinks/
57+
**/ios/**/profile
58+
**/ios/**/xcuserdata
59+
**/ios/.generated/
60+
**/ios/Flutter/App.framework
61+
**/ios/Flutter/Flutter.framework
62+
**/ios/Flutter/Flutter.podspec
63+
**/ios/Flutter/Generated.xcconfig
64+
**/ios/Flutter/ephemeral
65+
**/ios/Flutter/app.flx
66+
**/ios/Flutter/app.zip
67+
**/ios/Flutter/flutter_assets/
68+
**/ios/Flutter/flutter_export_environment.sh
69+
**/ios/ServiceDefinitions.json
70+
**/ios/Runner/GeneratedPluginRegistrant.*
1671

17-
# Avoid committing generated Javascript files:
18-
*.dart.js
19-
*.info.json # Produced by the --dump-info flag.
20-
*.js # When generated by dart2js. Don't specify *.js if your
21-
# project includes source files written in JavaScript.
22-
*.js_
23-
*.js.deps
24-
*.js.map
25-
26-
# OS Files
27-
.DS_Store
28-
Thumbs.db
29-
30-
# IDEs
31-
.idea/
32-
*.iml
33-
.vscode/
34-
.vs/
72+
# Exceptions to above rules.
73+
!**/ios/**/default.mode1v3
74+
!**/ios/**/default.mode2v3
75+
!**/ios/**/default.pbxuser
76+
!**/ios/**/default.perspectivev3

.metadata

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: f4abaa0735eba4dfd8f33f73363911d63931fe03
8+
channel: stable
9+
10+
project_type: package

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.0.1
2+
3+
- initial release.

README.md

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,3 @@
1-
# New Package for Stacked
1+
# stacked_gql
22

3-
Created from the `package-template`.
4-
5-
After creating the repository, proceed with the following instructions:
6-
7-
- Update the repository settings to adhere to the conventions:
8-
- General:
9-
- No Wikis
10-
- No Issues
11-
- No Sponsorships
12-
- Preserve this repository
13-
- No Discussions
14-
- No Projects
15-
- Don't allow merge commits
16-
- Allow squash merging with default commit message set to "Default to pull request title and commit details"
17-
- Don't allow rebase merging
18-
- Always suggest updating pull requests
19-
- Allow auto-merge
20-
- Automatically delete head branches
21-
- Branch protection rule (`main`):
22-
- Require a pull request before merging
23-
- Dismiss stale pull request approvals when new commits are pushed
24-
- Allow specified actors to bypass required pull requests -> `Dane Mackier` (or whoever is the current owner of the personal access token in the organization secrets `REPO_DEPLOYMENT_TOKEN`)
25-
- Require status checks to pass before merging
26-
- Require branches to be up to date before merging
27-
- Add status check `Linting and Testing` (to select this, the workflow must have been run at least once. This can be done manually since the workflow has "workflow_dispatch" as a trigger)
28-
- Require conversation resolution before merging
29-
- Require linear history
30-
- Create the flutter package with `flutter create -t package --project-name NAME .`
31-
- Update the content in the `README` file.
3+
A package that improves the usability of gql in flutter applications.

analysis_options.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
analyzer:
2+
# exclude the .dialog.dart generated files cause they require
3+
# This file configures the analyzer, which statically analyzes Dart code to
4+
# check for errors, warnings, and lints.
5+
#
6+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
7+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
8+
# invoked from the command line by running `flutter analyze`.
9+
10+
# The following line activates a set of recommended lints for Flutter apps,
11+
# packages, and plugins designed to encourage good coding practices.
12+
include: package:flutter_lints/flutter.yaml
13+
14+
linter:
15+
# The lint rules applied to this project can be customized in the
16+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
17+
# included above or to enable additional rules. A list of all available lints
18+
# and their documentation is published at
19+
# https://dart-lang.github.io/linter/lints/index.html.
20+
#
21+
# Instead of disabling a lint rule for the entire project in the
22+
# section below, it can also be suppressed for a single line of code
23+
# or a specific dart file by using the `// ignore: name_of_lint` and
24+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
25+
# producing the lint.
26+
rules:
27+
# avoid_print: false # Uncomment to disable the `avoid_print` rule
28+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
29+
30+
exclude: [test/dialogs/integration_test/samples/*.dialog.dart]
31+
# Additional information about this file can be found at
32+
# https://dart.dev/guides/language/analysis-options

0 commit comments

Comments
 (0)