mirror of
https://github.com/n08i40k/schedule-parser-next.git
synced 2025-12-06 09:47:46 +03:00
Названия конечных точек теперь пишутся в нижнем регистре через знак минуса. У DTO добавлена пара недостающих примеров в документации. Удалён неиспользуемый декоратор IsMap. users.controller.ts - Описана конечная точка "me". - Добавлены конечные точки "change-username" и "change-group", для смены имени пользователя и группы соответственно. users.service.ts - Добавлены методы "changeUsername" и "changeGroup", для смены имени пользователя и группы соответственно.
30 lines
988 B
YAML
30 lines
988 B
YAML
#-------------------------------------------------------------------------------#
|
|
# Qodana analysis is configured by qodana.yaml file #
|
|
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
|
|
#-------------------------------------------------------------------------------#
|
|
version: "1.0"
|
|
|
|
#Specify inspection profile for code analysis
|
|
profile:
|
|
name: qodana.starter
|
|
|
|
#Enable inspections
|
|
#include:
|
|
# - name: <SomeEnabledInspectionId>
|
|
|
|
#Disable inspections
|
|
#exclude:
|
|
# - name: <SomeDisabledInspectionId>
|
|
# paths:
|
|
# - <path/where/not/run/inspection>
|
|
|
|
#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
|
|
#bootstrap: sh ./prepare-qodana.sh
|
|
|
|
#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
|
|
#plugins:
|
|
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
|
|
|
|
#Specify Qodana linter for analysis (Applied in CI/CD pipeline)
|
|
linter: jetbrains/qodana-js:latest
|