Skip to content

Instantly share code, notes, and snippets.

@kboomska
kboomska / settings.json
Created July 13, 2024 16:19
VS Code User Settings (JSON)
{
"workbench.iconTheme": "material-icon-theme",
"editor.showDeprecated": false,
"explorer.compactFolders": false,
"workbench.startupEditor": "none",
"explorer.copyRelativePathSeparator": "/",
"editor.unicodeHighlight.allowedLocales": {
"ru": true
},
"git.openRepositoryInParentFolders": "always",
@kboomska
kboomska / settings.json
Last active July 13, 2024 16:19
VS Code Workspace Settings (JSON)
{
"[dart]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.links": true,
"editor.rulers": [
80
]
},
"dart.lineLength": 80,
import 'package:octagonal_bump_calculation/octagonal_bump_calculation_methods.dart';
void main(List<String> arguments) {
/// Расчет координат вершин октогональных бампов диаметром 60um.
/// Диаметр вложенной окружности слоя APLA (83;0).
final alpaDiameter60 = 71.11;
/// Отступ от BORDER (127;0) слоя.
final alpaPadding60 = 0.0;
# Miscellaneous
*.class
*.lock
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
@kboomska
kboomska / analysis_options.yaml
Last active March 31, 2024 10:55
Dart analyzer rules
include: package:flutter_lints/flutter.yaml
# Analyzer options
analyzer:
# Exclude files from analysis. Must be relative to the root of the package.
exclude:
# Build
- "build/**"
# Tests
# - "test/**.mocks.dart"
@kboomska
kboomska / dart.json
Last active April 25, 2023 18:04
Flutter snippets
{
"StatelessWidget": {
"prefix": "stl",
"description": "Insert a custom Flutter StatelessWidget.",
"body": [
"class ${1:MyWidget} extends StatelessWidget {",
"\tconst ${1:MyWidget}({super.key});",
"",
"\t@override",
"\tWidget build(BuildContext context) {",