File tree Expand file tree Collapse file tree 7 files changed +15
-16
lines changed
doc-generator/src/main/scala/codacy/pylint Expand file tree Collapse file tree 7 files changed +15
-16
lines changed Original file line number Diff line number Diff line change 11version : 2.1
22
33orbs :
4- codacy : codacy/base@12.1.2
5- codacy_plugins_test : codacy/plugins-test@2.0.11
4+ codacy : codacy/base@12.2.0
5+ codacy_plugins_test : codacy/plugins-test@2.1.0
66
77workflows :
88 version : 2
Original file line number Diff line number Diff line change 1- FROM python:3.13-alpine3.21
1+ FROM python:3.13-alpine3.22
22COPY requirements.txt ./
33RUN pip3 install --no-cache-dir -r requirements.txt
44COPY docs /docs
Original file line number Diff line number Diff line change 11lazy val `doc-generator` = project
22 .settings(
33 libraryDependencies ++= Seq (
4- " net.ruippeixotog" %% " scala-scraper" % " 3.0 .0" ,
5- " com.github.pathikrit" %% " better-files" % " 3.8.0 " ,
6- " com.lihaoyi" %% " ujson" % " 0.8.0 "
4+ " net.ruippeixotog" %% " scala-scraper" % " 3.2 .0" ,
5+ " com.github.pathikrit" %% " better-files" % " 3.9.2 " ,
6+ " com.lihaoyi" %% " ujson" % " 4.3.2 "
77 ),
8- scalaVersion := " 2.13.2 " ,
8+ scalaVersion := " 2.13.16 " ,
99 Compile / fork := true
1010 )
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import scala.util.chaining._
99
1010import net .ruippeixotog .scalascraper .browser .JsoupBrowser
1111import net .ruippeixotog .scalascraper .scraper .ContentExtractors .elementList
12- import net .ruippeixotog .scalascraper .dsl .DSL .deepFunctorOps
1312import net .ruippeixotog .scalascraper .dsl .DSL ._
1413import net .ruippeixotog .scalascraper .dsl .DSL .Extract ._
1514
@@ -80,8 +79,8 @@ object Main {
8079
8180 def makePlainText (title : String , body : String ): (String , String ) = {
8281 val newLines = body.linesIterator.toList match {
83- case title :: secondLine :: rest =>
84- title .stripSuffix(" ." ) + " ." :: secondLine.capitalize :: rest
82+ case firstLine :: secondLine :: rest =>
83+ firstLine .stripSuffix(" ." ) + " ." :: secondLine.capitalize :: rest
8584 case lines => lines
8685 }
8786 val descriptionText = newLines.mkString(" " )
Original file line number Diff line number Diff line change 11{
22 "name" : " pylintpython3" ,
3- "version" : " 3.3.7 " ,
3+ "version" : " 3.3.8 " ,
44 "patterns" : [
55 {
66 "patternId" : " E0103" ,
Original file line number Diff line number Diff line change 1- sbt.version =1.8.2
1+ sbt.version =1.11.6
Original file line number Diff line number Diff line change 1- pylint == 3.3.7
2- Django == 5.2.1
1+ pylint == 3.3.8
2+ Django == 5.2.6
33pylint-django == 2.6.1
4- Flask == 3.1.1
4+ Flask == 3.1.2
55pylint-flask == 0.6
66pylint-common == 0.2.5
77pylint-celery == 0.3
88SaltPyLint == 2024.2.5
9- jsonpickle == 4.0.5
9+ jsonpickle == 4.1.1
1010asttokens == 3.0.0
1111pylint-beam == 0.1.2
1212pylint-pytest == 1.1.8
You can’t perform that action at this time.
0 commit comments